DELETE MEMORY

This command will delete an area of memory previously created with the MAKE MEMORY command.

  Syntax
DELETE MEMORY Memory Address
  Parameters
Memory Address
Dword
This value is a positive number between 0 and 4294967295.

  Returns

This command does not return a value.

  Description

You must specify the first byte of the memory block to release the memory, or this command will not only fail but likely crash the computer. Use with caution.

  Example Code
src as DWORD
src=MAKE MEMORY(1024)
DELETE MEMORY src
WAIT KEY
  See also

CORE Commands Menu
Index